JavaScript

A5.audio.PlayertogglePlay Method

Syntax

A5.audio.Player.togglePlay()

Description

Toggle between playing and pausing the audio.

Example: Toggle Playback for the AudioPlayer Control

The UX Component AudioPlayer control's JavaScript object can be used to control the audio playback on the client. The _play property of the object contains the audio player class methods. The JavaScript below demonstrates how to toggle the audio playback for an AudioPlayer control:

// Get the object for the AudioPlayer Control:
var audioObj = {dialog.object}.getControl('AUDIOPLAYER');

if (audioObj) {
    // toggle playback
    audioObj._play.togglePlay();
}
The AudioRecorderAndPlayer control's JavaScript object also has a _play property containing methods for the audio player class.

See Also